FREE NET PLAYER

This command will remove a player from the current net game.

  Syntax
FREE NET PLAYER Player Number
  Parameters
Player Number
Integer
The Player Number refers to the Unique ID that was given to the player when it was created

  Returns

This command does not return a value.

  Description

The Player Number refers to the Unique ID that was given to the player when it was created. You can obtain this value from the checklist value a result produced when you use the PERFORM CHECKLIST FOR NET PLAYERS command.

  Example Code
print "EXTRA PLAYER CREATION"
PlayerNumber = create net player("NPC Player")
perform checklist for net players
Print "PLAYERS (At Time Of Call)"
for c=1 to checklist quantity()
print c;". ";checklist string$(c);" ID:";checklist value a(c);" UNIQUE:";checklist value b(c);" ";
if checklist value c(c)=1 then print "(me) ";
if checklist value d(c)=1 then print "(host) ";
next c
print "EXTRA PLAYER DESTRUCTION"
free net player PlayerNumber
  See also

MULTIPLAYER Commands Menu
Index